home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Python 1.4 / Python 1.4 source / Modules / posixmodule.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-28  |  34.1 KB  |  1,807 lines  |  [TEXT/CWIE]

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* POSIX module implementation */
  33.  
  34. /* This file is also used for Windows NT and MS-Win.  In that case the module
  35.    actually calls itself 'nt', not 'posix', and a few functions are
  36.    either unimplemented or implemented differently.  The source
  37.    assumes that for Windows NT, the macro 'MS_WIN32' is defined independent
  38.    of the compiler used.  Different compilers define their own feature
  39.    test macro, e.g. '__BORLANDC__' or '_MSC_VER'. */
  40.  
  41. /* See also ../Dos/dosmodule.c */
  42.  
  43. #include "allobjects.h"
  44. #include "modsupport.h"
  45. #include "ceval.h"
  46.  
  47. #include <string.h>
  48. #include <errno.h>
  49. #include <sys/types.h>
  50. #include <sys/stat.h>
  51. #ifdef HAVE_SYS_WAIT_H
  52. #include <sys/wait.h>        /* For WNOHANG */
  53. #endif
  54.  
  55. #include "mytime.h"        /* For clock_t on some systems */
  56.  
  57. #ifdef HAVE_FCNTL_H
  58. #include <fcntl.h>
  59. #endif /* HAVE_FCNTL_H */
  60.  
  61. /* Various compilers have only certain posix functions */
  62. #ifdef __WATCOMC__        /* Watcom compiler */
  63. #define HAVE_GETCWD     1
  64. #define HAVE_OPENDIR    1
  65. #define HAVE_SYSTEM    1
  66. #if defined(__OS2__)
  67. #define HAVE_EXECV      1
  68. #define HAVE_WAIT       1
  69. #endif
  70. #include <process.h>
  71. #else
  72. #ifdef __BORLANDC__        /* Borland compiler */
  73. #define HAVE_EXECV      1
  74. #define HAVE_GETCWD     1
  75. #define HAVE_GETEGID    1
  76. #define HAVE_GETEUID    1
  77. #define HAVE_GETGID     1
  78. #define HAVE_GETPPID    1
  79. #define HAVE_GETUID     1
  80. #define HAVE_KILL       1
  81. #define HAVE_OPENDIR    1
  82. #define HAVE_PIPE       1
  83. #define HAVE_POPEN      1
  84. #define HAVE_SYSTEM    1
  85. #define HAVE_WAIT       1
  86. #else
  87. #ifdef _MSC_VER        /* Microsoft compiler */
  88. #define HAVE_GETCWD     1
  89. #ifdef MS_WIN32
  90. #define HAVE_EXECV      1
  91. #define HAVE_PIPE       1
  92. #define HAVE_POPEN      1
  93. #define HAVE_SYSTEM    1
  94. #else /* 16-bit Windows */
  95. #endif /* !MS_WIN32 */
  96. #else            /* all other compilers */
  97. /* Unix functions that the configure script doesn't check for */
  98. #define HAVE_EXECV      1
  99. #define HAVE_FORK       1
  100. #define HAVE_GETCWD     1
  101. #define HAVE_GETEGID    1
  102. #define HAVE_GETEUID    1
  103. #define HAVE_GETGID     1
  104. #define HAVE_GETPPID    1
  105. #define HAVE_GETUID     1
  106. #define HAVE_KILL       1
  107. #define HAVE_OPENDIR    1
  108. #define HAVE_PIPE       1
  109. #define HAVE_POPEN      1
  110. #define HAVE_SYSTEM    1
  111. #define HAVE_WAIT       1
  112. #endif  /* _MSC_VER */
  113. #endif  /* __BORLANDC__ */
  114. #endif  /* ! __WATCOMC__ */
  115.  
  116. #ifndef _MSC_VER
  117.  
  118. #ifdef HAVE_UNISTD_H
  119. #include <unistd.h>
  120. #endif
  121.  
  122. #ifdef NeXT
  123. /* NeXT's <unistd.h> and <utime.h> aren't worth much */
  124. #undef HAVE_UNISTD_H
  125. #undef HAVE_UTIME_H
  126. /* #undef HAVE_GETCWD */
  127. #endif
  128.  
  129. #ifdef HAVE_UNISTD_H
  130. /* XXX These are for SunOS4.1.3 but shouldn't hurt elsewhere */
  131. extern int rename();
  132. extern int pclose();
  133. extern int lstat();
  134. extern int symlink();
  135. #else /* !HAVE_UNISTD_H */
  136. #if defined(__WATCOMC__) || defined(_MSC_VER)
  137. extern int mkdir PROTO((const char *));
  138. #else
  139. extern int mkdir PROTO((const char *, mode_t));
  140. #endif
  141. extern int chdir PROTO((const char *));
  142. extern int rmdir PROTO((const char *));
  143. extern int chmod PROTO((const char *, mode_t));
  144. extern int chown PROTO((const char *, uid_t, gid_t));
  145. extern char *getcwd PROTO((char *, int));
  146. extern char *strerror PROTO((int));
  147. extern int link PROTO((const char *, const char *));
  148. extern int rename PROTO((const char *, const char *));
  149. extern int stat PROTO((const char *, struct stat *));
  150. extern int unlink PROTO((const char *));
  151. extern int pclose PROTO((FILE *));
  152. #ifdef HAVE_SYMLINK
  153. extern int symlink PROTO((const char *, const char *));
  154. #endif /* HAVE_SYMLINK */
  155. #ifdef HAVE_LSTAT
  156. extern int lstat PROTO((const char *, struct stat *));
  157. #endif /* HAVE_LSTAT */
  158. #endif /* !HAVE_UNISTD_H */
  159.  
  160. #endif /* !_MSC_VER */
  161.  
  162. #ifdef HAVE_UTIME_H
  163. #include <utime.h>
  164. #endif /* HAVE_UTIME_H */
  165.  
  166. #ifdef HAVE_SYS_UTIME_H
  167. #include <sys/utime.h>
  168. #define HAVE_UTIME_H /* pretend we do for the rest of this file */
  169. #endif /* HAVE_SYS_UTIME_H */
  170.  
  171. #ifdef HAVE_SYS_TIMES_H
  172. #include <sys/times.h>
  173. #endif /* HAVE_SYS_TIMES_H */
  174.  
  175. #ifdef HAVE_SYS_PARAM_H
  176. #include <sys/param.h>
  177. #endif /* HAVE_SYS_PARAM_H */
  178.  
  179. #ifdef HAVE_SYS_UTSNAME_H
  180. #include <sys/utsname.h>
  181. #endif /* HAVE_SYS_UTSNAME_H */
  182.  
  183. #ifndef MAXPATHLEN
  184. #define MAXPATHLEN 1024
  185. #endif /* MAXPATHLEN */
  186.  
  187. #ifdef HAVE_DIRENT_H
  188. #include <dirent.h>
  189. #define NAMLEN(dirent) strlen((dirent)->d_name)
  190. #else
  191. #ifdef __WATCOMC__
  192. #include <direct.h>
  193. #define NAMLEN(dirent) strlen((dirent)->d_name)
  194. #else
  195. #define dirent direct
  196. #define NAMLEN(dirent) (dirent)->d_namlen
  197. #endif
  198. #ifdef HAVE_SYS_NDIR_H
  199. #include <sys/ndir.h>
  200. #endif
  201. #ifdef HAVE_SYS_DIR_H
  202. #include <sys/dir.h>
  203. #endif
  204. #ifdef HAVE_NDIR_H
  205. #include <ndir.h>
  206. #endif
  207. #endif
  208.  
  209. #ifdef _MSC_VER
  210. #include <direct.h>
  211. #include <io.h>
  212. #include <process.h>
  213. #include <windows.h>
  214. #ifdef MS_WIN32
  215. #define popen    _popen
  216. #define pclose    _pclose
  217. #else /* 16-bit Windows */
  218. #include <dos.h>
  219. #include <ctype.h>
  220. #endif /* MS_WIN32 */
  221. #endif /* _MSC_VER */
  222.  
  223. #ifdef OS2
  224. #include <io.h>
  225. #endif /* OS2 */
  226.  
  227. /* Return a dictionary corresponding to the POSIX environment table */
  228.  
  229. #if !defined(_MSC_VER) && !defined(__WATCOMC__)
  230. extern char **environ;
  231. #endif /* !_MSC_VER */
  232.  
  233. static object *
  234. convertenviron()
  235. {
  236.     object *d;
  237.     char **e;
  238.     d = newdictobject();
  239.     if (d == NULL)
  240.         return NULL;
  241.     if (environ == NULL)
  242.         return d;
  243.     /* XXX This part ignores errors */
  244.     for (e = environ; *e != NULL; e++) {
  245.         object *v;
  246.         char *p = strchr(*e, '=');
  247.         if (p == NULL)
  248.             continue;
  249.         v = newstringobject(p+1);
  250.         if (v == NULL)
  251.             continue;
  252.         *p = '\0';
  253.         (void) dictinsert(d, *e, v);
  254.         *p = '=';
  255.         DECREF(v);
  256.     }
  257.     return d;
  258. }
  259.  
  260.  
  261. static object *PosixError; /* Exception posix.error */
  262.  
  263. /* Set a POSIX-specific error from errno, and return NULL */
  264.  
  265. static object * posix_error()
  266. {
  267.     return err_errno(PosixError);
  268. }
  269.  
  270.  
  271. /* POSIX generic methods */
  272.  
  273. static object *
  274. posix_1str(args, func)
  275.     object *args;
  276.     int (*func) FPROTO((const char *));
  277. {
  278.     char *path1;
  279.     int res;
  280.     if (!getargs(args, "s", &path1))
  281.         return NULL;
  282.     BGN_SAVE
  283.     res = (*func)(path1);
  284.     END_SAVE
  285.     if (res < 0)
  286.         return posix_error();
  287.     INCREF(None);
  288.     return None;
  289. }
  290.  
  291. static object *
  292. posix_2str(args, func)
  293.     object *args;
  294.     int (*func) FPROTO((const char *, const char *));
  295. {
  296.     char *path1, *path2;
  297.     int res;
  298.     if (!getargs(args, "(ss)", &path1, &path2))
  299.         return NULL;
  300.     BGN_SAVE
  301.     res = (*func)(path1, path2);
  302.     END_SAVE
  303.     if (res < 0)
  304.         return posix_error();
  305.     INCREF(None);
  306.     return None;
  307. }
  308.  
  309. static object *
  310. posix_strint(args, func)
  311.     object *args;
  312.     int (*func) FPROTO((const char *, int));
  313. {
  314.     char *path;
  315.     int i;
  316.     int res;
  317.     if (!getargs(args, "(si)", &path, &i))
  318.         return NULL;
  319.     BGN_SAVE
  320.     res = (*func)(path, i);
  321.     END_SAVE
  322.     if (res < 0)
  323.         return posix_error();
  324.     INCREF(None);
  325.     return None;
  326. }
  327.  
  328. static object *
  329. posix_strintint(args, func)
  330.     object *args;
  331.     int (*func) FPROTO((const char *, int, int));
  332. {
  333.     char *path;
  334.     int i,i2;
  335.     int res;
  336.     if (!getargs(args, "(sii)", &path, &i, &i2))
  337.         return NULL;
  338.     BGN_SAVE
  339.     res = (*func)(path, i, i2);
  340.     END_SAVE
  341.     if (res < 0)
  342.         return posix_error();
  343.     INCREF(None);
  344.     return None;
  345. }
  346.  
  347. static object *
  348. posix_do_stat(self, args, statfunc)
  349.     object *self;
  350.     object *args;
  351.     int (*statfunc) FPROTO((const char *, struct stat *));
  352. {
  353.     struct stat st;
  354.     char *path;
  355.     int res;
  356.     if (!getargs(args, "s", &path))
  357.         return NULL;
  358.     BGN_SAVE
  359.     res = (*statfunc)(path, &st);
  360.     END_SAVE
  361.     if (res != 0)
  362.         return posix_error();
  363.     return mkvalue("(llllllllll)",
  364.             (long)st.st_mode,
  365.             (long)st.st_ino,
  366.             (long)st.st_dev,
  367.             (long)st.st_nlink,
  368.             (long)st.st_uid,
  369.             (long)st.st_gid,
  370.             (long)st.st_size,
  371.             (long)st.st_atime,
  372.             (long)st.st_mtime,
  373.             (long)st.st_ctime);
  374. }
  375.  
  376.  
  377. /* POSIX methods */
  378.  
  379. static object *
  380. posix_chdir(self, args)
  381.     object *self;
  382.     object *args;
  383. {
  384.     return posix_1str(args, chdir);
  385. }
  386.  
  387. static object *
  388. posix_chmod(self, args)
  389.     object *self;
  390.     object *args;
  391. {
  392.     return posix_strint(args, chmod);
  393. }
  394.  
  395. #ifdef HAVE_CHOWN
  396. static object *
  397. posix_chown(self, args)
  398.     object *self;
  399.     object *args;
  400. {
  401.     return posix_strintint(args, chown);
  402. }
  403. #endif /* HAVE_CHOWN */
  404.  
  405. #ifdef HAVE_GETCWD
  406. static object *
  407. posix_getcwd(self, args)
  408.     object *self;
  409.     object *args;
  410. {
  411.     char buf[1026];
  412.     char *res;
  413.     if (!getnoarg(args))
  414.         return NULL;
  415.     BGN_SAVE
  416.     res = getcwd(buf, sizeof buf);
  417.     END_SAVE
  418.     if (res == NULL)
  419.         return posix_error();
  420.     return newstringobject(buf);
  421. }
  422. #endif
  423.  
  424. #ifdef HAVE_LINK
  425. static object *
  426. posix_link(self, args)
  427.     object *self;
  428.     object *args;
  429. {
  430.     return posix_2str(args, link);
  431. }
  432. #endif /* HAVE_LINK */
  433.  
  434. static object *
  435. posix_listdir(self, args)
  436.     object *self;
  437.     object *args;
  438. {
  439. #if defined(MS_WIN32) && !defined(HAVE_OPENDIR)
  440.  
  441.     char *name;
  442.     int len;
  443.     object *d, *v;
  444.     HANDLE hFindFile;
  445.     WIN32_FIND_DATA FileData;
  446.     char namebuf[MAX_PATH+5];
  447.  
  448.     if (!getargs(args, "s#", &name, &len))
  449.         return NULL;
  450.     if (len >= MAX_PATH) {
  451.         err_setstr(ValueError, "path too long");
  452.         return NULL;
  453.     }
  454.     strcpy(namebuf, name);
  455.     if (namebuf[len-1] != '/' && namebuf[len-1] != '\\')
  456.         namebuf[len++] = '/';
  457.     strcpy(namebuf + len, "*.*");
  458.  
  459.     if ((d = newlistobject(0)) == NULL)
  460.         return NULL;
  461.  
  462.     hFindFile = FindFirstFile(namebuf, &FileData);
  463.     if (hFindFile == INVALID_HANDLE_VALUE) {
  464.         errno = GetLastError();
  465.         return posix_error();
  466.     }
  467.     do {
  468.         if (FileData.cFileName[0] == '.' &&
  469.             (FileData.cFileName[1] == '\0' ||
  470.              FileData.cFileName[1] == '.' &&
  471.              FileData.cFileName[2] == '\0'))
  472.             continue;
  473.         v = newstringobject(FileData.cFileName);
  474.         if (v == NULL) {
  475.             DECREF(d);
  476.             d = NULL;
  477.             break;
  478.         }
  479.         if (addlistitem(d, v) != 0) {
  480.             DECREF(v);
  481.             DECREF(d);
  482.             d = NULL;
  483.             break;
  484.         }
  485.         DECREF(v);
  486.     } while (FindNextFile(hFindFile, &FileData) == TRUE);
  487.  
  488.     if (FindClose(hFindFile) == FALSE) {
  489.         errno = GetLastError();
  490.         return posix_error();
  491.     }
  492.  
  493.     return d;
  494.  
  495. #else /* !MS_WIN32 */
  496. #ifdef _MSC_VER /* 16-bit Windows */
  497.  
  498. #ifndef MAX_PATH
  499. #define MAX_PATH    250
  500. #endif
  501.     char *name, *pt;
  502.     int len;
  503.     object *d, *v;
  504.     char namebuf[MAX_PATH+5];
  505.     struct _find_t ep;
  506.  
  507.     if (!getargs(args, "s#", &name, &len))
  508.         return NULL;
  509.     if (len >= MAX_PATH) {
  510.         err_setstr(ValueError, "path too long");
  511.         return NULL;
  512.     }
  513.     strcpy(namebuf, name);
  514.     for (pt = namebuf; *pt; pt++)
  515.         if (*pt == '/')
  516.             *pt = '\\';
  517.     if (namebuf[len-1] != '\\')
  518.         namebuf[len++] = '\\';
  519.     strcpy(namebuf + len, "*.*");
  520.  
  521.     if ((d = newlistobject(0)) == NULL)
  522.         return NULL;
  523.  
  524.     if (_dos_findfirst(namebuf, _A_RDONLY |
  525.             _A_HIDDEN | _A_SYSTEM | _A_SUBDIR, &ep) != 0){
  526.         errno = ENOENT;
  527.         return posix_error();
  528.     }
  529.     do {
  530.         if (ep.name[0] == '.' &&
  531.             (ep.name[1] == '\0' ||
  532.              ep.name[1] == '.' &&
  533.              ep.name[2] == '\0'))
  534.             continue;
  535.         strcpy(namebuf, ep.name);
  536.         for (pt = namebuf; *pt; pt++)
  537.             if (isupper(*pt))
  538.                 *pt = tolower(*pt);
  539.         v = newstringobject(namebuf);
  540.         if (v == NULL) {
  541.             DECREF(d);
  542.             d = NULL;
  543.             break;
  544.         }
  545.         if (addlistitem(d, v) != 0) {
  546.             DECREF(v);
  547.             DECREF(d);
  548.             d = NULL;
  549.             break;
  550.         }
  551.         DECREF(v);
  552.     } while (_dos_findnext(&ep) == 0);
  553.  
  554.     return d;
  555.  
  556. #else
  557.  
  558.     char *name;
  559.     object *d, *v;
  560.     DIR *dirp;
  561.     struct dirent *ep;
  562.     if (!getargs(args, "s", &name))
  563.         return NULL;
  564.     BGN_SAVE
  565.     if ((dirp = opendir(name)) == NULL) {
  566.         RET_SAVE
  567.         return posix_error();
  568.     }
  569.     if ((d = newlistobject(0)) == NULL) {
  570.         closedir(dirp);
  571.         RET_SAVE
  572.         return NULL;
  573.     }
  574.     while ((ep = readdir(dirp)) != NULL) {
  575.         if (ep->d_name[0] == '.' &&
  576.             (NAMLEN(ep) == 1 ||
  577.              ep->d_name[1] == '.' && NAMLEN(ep) == 2))
  578.             continue;
  579.         v = newsizedstringobject(ep->d_name, NAMLEN(ep));
  580.         if (v == NULL) {
  581.             DECREF(d);
  582.             d = NULL;
  583.             break;
  584.         }
  585.         if (addlistitem(d, v) != 0) {
  586.             DECREF(v);
  587.             DECREF(d);
  588.             d = NULL;
  589.             break;
  590.         }
  591.         DECREF(v);
  592.     }
  593.     closedir(dirp);
  594.     END_SAVE
  595.  
  596.     return d;
  597.  
  598. #endif /* !_MSC_VER */
  599. #endif /* !MS_WIN32 */
  600. }
  601.  
  602. static object *
  603. posix_mkdir(self, args)
  604.     object *self;
  605.     object *args;
  606. {
  607.     int res;
  608.     char *path;
  609.     int mode = 0777;
  610.     if (!newgetargs(args, "s|i", &path, &mode))
  611.         return NULL;
  612.     BGN_SAVE
  613. #if defined(__WATCOMC__) || defined(_MSC_VER)
  614.     res = mkdir(path);
  615. #else
  616.     res = mkdir(path, mode);
  617. #endif
  618.     END_SAVE
  619.     if (res < 0)
  620.         return posix_error();
  621.     INCREF(None);
  622.     return None;
  623. }
  624.  
  625. #ifdef HAVE_NICE
  626. static object *
  627. posix_nice(self, args)
  628.     object *self;
  629.     object *args;
  630. {
  631.     int increment, value;
  632.  
  633.     if (!getargs(args, "i", &increment))
  634.         return NULL;
  635.     value = nice(increment);
  636.     if (value == -1)
  637.         return posix_error();
  638.     return newintobject((long) value);
  639. }
  640. #endif /* HAVE_NICE */
  641.  
  642. static object *
  643. posix_rename(self, args)
  644.     object *self;
  645.     object *args;
  646. {
  647.     return posix_2str(args, rename);
  648. }
  649.  
  650. static object *
  651. posix_rmdir(self, args)
  652.     object *self;
  653.     object *args;
  654. {
  655.     return posix_1str(args, rmdir);
  656. }
  657.  
  658. static object *
  659. posix_stat(self, args)
  660.     object *self;
  661.     object *args;
  662. {
  663.     return posix_do_stat(self, args, stat);
  664. }
  665.  
  666. #ifdef HAVE_SYSTEM
  667. static object *
  668. posix_system(self, args)
  669.     object *self;
  670.     object *args;
  671. {
  672.     char *command;
  673.     long sts;
  674.     if (!getargs(args, "s", &command))
  675.         return NULL;
  676.     BGN_SAVE
  677.     sts = system(command);
  678.     END_SAVE
  679.     return newintobject(sts);
  680. }
  681. #endif
  682.  
  683. static object *
  684. posix_umask(self, args)
  685.     object *self;
  686.     object *args;
  687. {
  688.     int i;
  689.     if (!getintarg(args, &i))
  690.         return NULL;
  691.     i = umask(i);
  692.     if (i < 0)
  693.         return posix_error();
  694.     return newintobject((long)i);
  695. }
  696.  
  697. static object *
  698. posix_unlink(self, args)
  699.     object *self;
  700.     object *args;
  701. {
  702.     return posix_1str(args, unlink);
  703. }
  704.  
  705. #ifdef HAVE_UNAME
  706. static object *
  707. posix_uname(self, args)
  708.     object *self;
  709.     object *args;
  710. {
  711.     struct utsname u;
  712.     object *v;
  713.     int res;
  714.     if (!getnoarg(args))
  715.         return NULL;
  716.     BGN_SAVE
  717.     res = uname(&u);
  718.     END_SAVE
  719.     if (res < 0)
  720.         return posix_error();
  721.     return mkvalue("(sssss)",
  722.                u.sysname,
  723.                u.nodename,
  724.                u.release,
  725.                u.version,
  726.                u.machine);
  727. }
  728. #endif /* HAVE_UNAME */
  729.  
  730. static object *
  731. posix_utime(self, args)
  732.     object *self;
  733.     object *args;
  734. {
  735.     char *path;
  736.     long atime, mtime;
  737.     int res;
  738.  
  739. #ifdef HAVE_UTIME_H
  740.     struct utimbuf buf;
  741. #define ATIME buf.actime
  742. #define MTIME buf.modtime
  743. #define UTIME_ARG &buf
  744. #else /* HAVE_UTIME_H */
  745.     time_t buf[2];
  746. #define ATIME buf[0]
  747. #define MTIME buf[1]
  748. #define UTIME_ARG buf
  749. #endif /* HAVE_UTIME_H */
  750.  
  751.     if (!getargs(args, "(s(ll))", &path, &atime, &mtime))
  752.         return NULL;
  753.     ATIME = atime;
  754.     MTIME = mtime;
  755.     BGN_SAVE
  756.     res = utime(path, UTIME_ARG);
  757.     END_SAVE
  758.     if (res < 0)
  759.         return posix_error();
  760.     INCREF(None);
  761.     return None;
  762. #undef UTIME_ARG
  763. #undef ATIME
  764. #undef MTIME
  765. }
  766.  
  767.  
  768. /* Process operations */
  769.  
  770. static object *
  771. posix__exit(self, args)
  772.     object *self;
  773.     object *args;
  774. {
  775.     int sts;
  776.     if (!getintarg(args, &sts))
  777.         return NULL;
  778.     _exit(sts);
  779.     /* NOTREACHED */
  780. }
  781.  
  782. #ifdef HAVE_EXECV
  783. static object *
  784. posix_execv(self, args)
  785.     object *self;
  786.     object *args;
  787. {
  788.     char *path;
  789.     object *argv;
  790.     char **argvlist;
  791.     int i, argc;
  792.     object *(*getitem) PROTO((object *, int));
  793.  
  794.     /* execv has two arguments: (path, argv), where
  795.        argv is a list or tuple of strings. */
  796.  
  797.     if (!getargs(args, "(sO)", &path, &argv))
  798.         return NULL;
  799.     if (is_listobject(argv)) {
  800.         argc = getlistsize(argv);
  801.         getitem = getlistitem;
  802.     }
  803.     else if (is_tupleobject(argv)) {
  804.         argc = gettuplesize(argv);
  805.         getitem = gettupleitem;
  806.     }
  807.     else {
  808.  badarg:
  809.         err_badarg();
  810.         return NULL;
  811.     }
  812.  
  813.     argvlist = NEW(char *, argc+1);
  814.     if (argvlist == NULL)
  815.         return NULL;
  816.     for (i = 0; i < argc; i++) {
  817.         if (!getargs((*getitem)(argv, i), "s", &argvlist[i])) {
  818.             DEL(argvlist);
  819.             goto badarg;
  820.         }
  821.     }
  822.     argvlist[argc] = NULL;
  823.  
  824. #ifdef BAD_EXEC_PROTOTYPES
  825.     execv(path, (const char **) argvlist);
  826. #else /* BAD_EXEC_PROTOTYPES */
  827.     execv(path, argvlist);
  828. #endif /* BAD_EXEC_PROTOTYPES */
  829.  
  830.     /* If we get here it's definitely an error */
  831.  
  832.     DEL(argvlist);
  833.     return posix_error();
  834. }
  835.  
  836. static object *
  837. posix_execve(self, args)
  838.     object *self;
  839.     object *args;
  840. {
  841.     char *path;
  842.     object *argv, *env;
  843.     char **argvlist;
  844.     char **envlist;
  845.     object *key, *val;
  846.     int i, pos, argc, envc;
  847.     object *(*getitem) PROTO((object *, int));
  848.  
  849.     /* execve has three arguments: (path, argv, env), where
  850.        argv is a list or tuple of strings and env is a dictionary
  851.        like posix.environ. */
  852.  
  853.     if (!getargs(args, "(sOO)", &path, &argv, &env))
  854.         return NULL;
  855.     if (is_listobject(argv)) {
  856.         argc = getlistsize(argv);
  857.         getitem = getlistitem;
  858.     }
  859.     else if (is_tupleobject(argv)) {
  860.         argc = gettuplesize(argv);
  861.         getitem = gettupleitem;
  862.     }
  863.     else {
  864.         err_setstr(TypeError, "argv must be tuple or list");
  865.         return NULL;
  866.     }
  867.     if (!is_dictobject(env)) {
  868.         err_setstr(TypeError, "env must be dictionary");
  869.         return NULL;
  870.     }
  871.  
  872.     argvlist = NEW(char *, argc+1);
  873.     if (argvlist == NULL) {
  874.         err_nomem();
  875.         return NULL;
  876.     }
  877.     for (i = 0; i < argc; i++) {
  878.         if (!getargs((*getitem)(argv, i),
  879.                  "s;argv must be list of strings",
  880.                  &argvlist[i])) {
  881.             goto fail_1;
  882.         }
  883.     }
  884.     argvlist[argc] = NULL;
  885.  
  886.     i = getmappingsize(env);
  887.     envlist = NEW(char *, i + 1);
  888.     if (envlist == NULL) {
  889.         err_nomem();
  890.         goto fail_1;
  891.     }
  892.     pos = 0;
  893.     envc = 0;
  894.     while (mappinggetnext(env, &pos, &key, &val)) {
  895.         char *p, *k, *v;
  896.         if (!getargs(key, "s;non-string key in env", &k) ||
  897.             !getargs(val, "s;non-string value in env", &v)) {
  898.             goto fail_2;
  899.         }
  900.         p = NEW(char, getstringsize(key) + getstringsize(val) + 2);
  901.         if (p == NULL) {
  902.             err_nomem();
  903.             goto fail_2;
  904.         }
  905.         sprintf(p, "%s=%s", k, v);
  906.         envlist[envc++] = p;
  907.     }
  908.     envlist[envc] = 0;
  909.  
  910.  
  911. #ifdef BAD_EXEC_PROTOTYPES
  912.     execve(path, (const char **)argvlist, envlist);
  913. #else /* BAD_EXEC_PROTOTYPES */
  914.     execve(path, argvlist, envlist);
  915. #endif /* BAD_EXEC_PROTOTYPES */
  916.     
  917.     /* If we get here it's definitely an error */
  918.  
  919.     (void) posix_error();
  920.  
  921.  fail_2:
  922.     while (--envc >= 0)
  923.         DEL(envlist[envc]);
  924.     DEL(envlist);
  925.  fail_1:
  926.     DEL(argvlist);
  927.  
  928.     return NULL;
  929. }
  930. #endif /* HAVE_EXECV */
  931.  
  932. #ifdef HAVE_FORK
  933. static object *
  934. posix_fork(self, args)
  935.     object *self;
  936.     object *args;
  937. {
  938.     int pid;
  939.     if (!getnoarg(args))
  940.         return NULL;
  941.     pid = fork();
  942.     if (pid == -1)
  943.         return posix_error();
  944.     return newintobject((long)pid);
  945. }
  946. #endif
  947.  
  948. #ifdef HAVE_GETEGID
  949. static object *
  950. posix_getegid(self, args)
  951.     object *self;
  952.     object *args;
  953. {
  954.     if (!getnoarg(args))
  955.         return NULL;
  956.     return newintobject((long)getegid());
  957. }
  958. #endif
  959.  
  960. #ifdef HAVE_GETEUID
  961. static object *
  962. posix_geteuid(self, args)
  963.     object *self;
  964.     object *args;
  965. {
  966.     if (!getnoarg(args))
  967.         return NULL;
  968.     return newintobject((long)geteuid());
  969. }
  970. #endif
  971.  
  972. #ifdef HAVE_GETGID
  973. static object *
  974. posix_getgid(self, args)
  975.     object *self;
  976.     object *args;
  977. {
  978.     if (!getnoarg(args))
  979.         return NULL;
  980.     return newintobject((long)getgid());
  981. }
  982. #endif
  983.  
  984. static object *
  985. posix_getpid(self, args)
  986.     object *self;
  987.     object *args;
  988. {
  989.     if (!getnoarg(args))
  990.         return NULL;
  991.     return newintobject((long)getpid());
  992. }
  993.  
  994. #ifdef HAVE_GETPGRP
  995. static object *
  996. posix_getpgrp(self, args)
  997.     object *self;
  998.     object *args;
  999. {
  1000.     if (!getnoarg(args))
  1001.         return NULL;
  1002. #ifdef GETPGRP_HAVE_ARG
  1003.     return newintobject((long)getpgrp(0));
  1004. #else /* GETPGRP_HAVE_ARG */
  1005.     return newintobject((long)getpgrp());
  1006. #endif /* GETPGRP_HAVE_ARG */
  1007. }
  1008. #endif /* HAVE_GETPGRP */
  1009.  
  1010. #ifdef HAVE_SETPGRP
  1011. static object *
  1012. posix_setpgrp(self, args)
  1013.     object *self;
  1014.     object *args;
  1015. {
  1016.     if (!getnoarg(args))
  1017.         return NULL;
  1018. #ifdef SETPGRP_HAVE_ARG
  1019.     if (setpgrp(0, 0) < 0)
  1020. #else /* SETPGRP_HAVE_ARG */
  1021.     if (setpgrp() < 0)
  1022. #endif /* SETPGRP_HAVE_ARG */
  1023.         return posix_error();
  1024.     INCREF(None);
  1025.     return None;
  1026. }
  1027.  
  1028. #endif /* HAVE_SETPGRP */
  1029.  
  1030. #ifdef HAVE_GETPPID
  1031. static object *
  1032. posix_getppid(self, args)
  1033.     object *self;
  1034.     object *args;
  1035. {
  1036.     if (!getnoarg(args))
  1037.         return NULL;
  1038.     return newintobject((long)getppid());
  1039. }
  1040. #endif
  1041.  
  1042. #ifdef HAVE_GETUID
  1043. static object *
  1044. posix_getuid(self, args)
  1045.     object *self;
  1046.     object *args;
  1047. {
  1048.     if (!getnoarg(args))
  1049.         return NULL;
  1050.     return newintobject((long)getuid());
  1051. }
  1052. #endif
  1053.  
  1054. #ifdef HAVE_KILL
  1055. static object *
  1056. posix_kill(self, args)
  1057.     object *self;
  1058.     object *args;
  1059. {
  1060.     int pid, sig;
  1061.     if (!getargs(args, "(ii)", &pid, &sig))
  1062.         return NULL;
  1063.     if (kill(pid, sig) == -1)
  1064.         return posix_error();
  1065.     INCREF(None);
  1066.     return None;
  1067. }
  1068. #endif
  1069.  
  1070. #ifdef HAVE_PLOCK
  1071.  
  1072. #ifdef HAVE_SYS_LOCK_H
  1073. #include <sys/lock.h>
  1074. #endif
  1075.  
  1076. static object *
  1077. posix_plock(self, args)
  1078.     object *self;
  1079.     object *args;
  1080. {
  1081.     int op;
  1082.     if (!getargs(args, "i", &op))
  1083.         return NULL;
  1084.     if (plock(op) == -1)
  1085.         return posix_error();
  1086.     INCREF(None);
  1087.     return None;
  1088. }
  1089. #endif
  1090.  
  1091. #ifdef HAVE_POPEN
  1092. static object *
  1093. posix_popen(self, args)
  1094.     object *self;
  1095.     object *args;
  1096. {
  1097.     char *name;
  1098.     char *mode = "r";
  1099.     int bufsize = -1;
  1100.     FILE *fp;
  1101.     object *f;
  1102.     if (!newgetargs(args, "s|si", &name, &mode, &bufsize))
  1103.         return NULL;
  1104.     BGN_SAVE
  1105.     fp = popen(name, mode);
  1106.     END_SAVE
  1107.     if (fp == NULL)
  1108.         return posix_error();
  1109.     f = newopenfileobject(fp, name, mode, pclose);
  1110.     if (f != NULL)
  1111.         setfilebufsize(f, bufsize);
  1112.     return f;
  1113. }
  1114. #endif /* HAVE_POPEN */
  1115.  
  1116. #ifdef HAVE_SETUID
  1117. static object *
  1118. posix_setuid(self, args)
  1119.     object *self;
  1120.     object *args;
  1121. {
  1122.     int uid;
  1123.     if (!getargs(args, "i", &uid))
  1124.         return NULL;
  1125.     if (setuid(uid) < 0)
  1126.         return posix_error();
  1127.     INCREF(None);
  1128.     return None;
  1129. }
  1130. #endif /* HAVE_SETUID */
  1131.  
  1132. #ifdef HAVE_SETGID
  1133. static object *
  1134. posix_setgid(self, args)
  1135.     object *self;
  1136.     object *args;
  1137. {
  1138.     int gid;
  1139.     if (!getargs(args, "i", &gid))
  1140.         return NULL;
  1141.     if (setgid(gid) < 0)
  1142.         return posix_error();
  1143.     INCREF(None);
  1144.     return None;
  1145. }
  1146. #endif /* HAVE_SETGID */
  1147.  
  1148. #ifdef HAVE_WAITPID
  1149. static object *
  1150. posix_waitpid(self, args)
  1151.     object *self;
  1152.     object *args;
  1153. {
  1154.     int pid, options, sts = 0;
  1155.     if (!getargs(args, "(ii)", &pid, &options))
  1156.         return NULL;
  1157.     BGN_SAVE
  1158.     pid = waitpid(pid, &sts, options);
  1159.     END_SAVE
  1160.     if (pid == -1)
  1161.         return posix_error();
  1162.     else
  1163.         return mkvalue("ii", pid, sts);
  1164. }
  1165. #endif /* HAVE_WAITPID */
  1166.  
  1167. #ifdef HAVE_WAIT
  1168. static object *
  1169. posix_wait(self, args)
  1170.     object *self;
  1171.     object *args;
  1172. {
  1173.     int pid, sts;
  1174.     BGN_SAVE
  1175.     pid = wait(&sts);
  1176.     END_SAVE
  1177.     if (pid == -1)
  1178.         return posix_error();
  1179.     else
  1180.         return mkvalue("ii", pid, sts);
  1181. }
  1182. #endif
  1183.  
  1184. static object *
  1185. posix_lstat(self, args)
  1186.     object *self;
  1187.     object *args;
  1188. {
  1189. #ifdef HAVE_LSTAT
  1190.     return posix_do_stat(self, args, lstat);
  1191. #else /* !HAVE_LSTAT */
  1192.     return posix_do_stat(self, args, stat);
  1193. #endif /* !HAVE_LSTAT */
  1194. }
  1195.  
  1196. #ifdef HAVE_READLINK
  1197. static object *
  1198. posix_readlink(self, args)
  1199.     object *self;
  1200.     object *args;
  1201. {
  1202.     char buf[MAXPATHLEN];
  1203.     char *path;
  1204.     int n;
  1205.     if (!getargs(args, "s", &path))
  1206.         return NULL;
  1207.     BGN_SAVE
  1208.     n = readlink(path, buf, (int) sizeof buf);
  1209.     END_SAVE
  1210.     if (n < 0)
  1211.         return posix_error();
  1212.     return newsizedstringobject(buf, n);
  1213. }
  1214. #endif /* HAVE_READLINK */
  1215.  
  1216. #ifdef HAVE_SYMLINK
  1217. static object *
  1218. posix_symlink(self, args)
  1219.     object *self;
  1220.     object *args;
  1221. {
  1222.     return posix_2str(args, symlink);
  1223. }
  1224. #endif /* HAVE_SYMLINK */
  1225.  
  1226. #ifdef HAVE_TIMES
  1227. #ifndef HZ
  1228. #define HZ 60 /* Universal constant :-) */
  1229. #endif /* HZ */
  1230. static object *
  1231. posix_times(self, args)
  1232.     object *self;
  1233.     object *args;
  1234. {
  1235.     struct tms t;
  1236.     clock_t c;
  1237.     if (!getnoarg(args))
  1238.         return NULL;
  1239.     errno = 0;
  1240.     c = times(&t);
  1241.     if (c == (clock_t) -1)
  1242.         return posix_error();
  1243.     return mkvalue("ddddd",
  1244.                (double)t.tms_utime / HZ,
  1245.                (double)t.tms_stime / HZ,
  1246.                (double)t.tms_cutime / HZ,
  1247.                (double)t.tms_cstime / HZ,
  1248.                (double)c / HZ);
  1249. }
  1250. #endif /* HAVE_TIMES */
  1251. #ifdef MS_WIN32
  1252. #define HAVE_TIMES    /* so the method table will pick it up */
  1253. static object *
  1254. posix_times(self, args)
  1255.     object *self;
  1256.     object *args;
  1257. {
  1258.     FILETIME create, exit, kernel, user;
  1259.     HANDLE hProc;
  1260.     if (!getnoarg(args))
  1261.         return NULL;
  1262.     hProc = GetCurrentProcess();
  1263.     GetProcessTimes(hProc,&create, &exit, &kernel, &user);
  1264.     return mkvalue("ddddd",
  1265.                (double)(kernel.dwHighDateTime*2E32+kernel.dwLowDateTime) / 2E6,
  1266.                (double)(user.dwHighDateTime*2E32+user.dwLowDateTime) / 2E6,
  1267.                (double)0,
  1268.                (double)0,
  1269.                (double)0);
  1270. }
  1271. #endif /* MS_WIN32 */
  1272.  
  1273. #ifdef HAVE_SETSID
  1274. static object *
  1275. posix_setsid(self, args)
  1276.     object *self;
  1277.     object *args;
  1278. {
  1279.     if (!getnoarg(args))
  1280.         return NULL;
  1281.     if (setsid() < 0)
  1282.         return posix_error();
  1283.     INCREF(None);
  1284.     return None;
  1285. }
  1286. #endif /* HAVE_SETSID */
  1287.  
  1288. #ifdef HAVE_SETPGID
  1289. static object *
  1290. posix_setpgid(self, args)
  1291.     object *self;
  1292.     object *args;
  1293. {
  1294.     int pid, pgrp;
  1295.     if (!getargs(args, "(ii)", &pid, &pgrp))
  1296.         return NULL;
  1297.     if (setpgid(pid, pgrp) < 0)
  1298.         return posix_error();
  1299.     INCREF(None);
  1300.     return None;
  1301. }
  1302. #endif /* HAVE_SETPGID */
  1303.  
  1304. #ifdef HAVE_TCGETPGRP
  1305. static object *
  1306. posix_tcgetpgrp(self, args)
  1307.     object *self;
  1308.     object *args;
  1309. {
  1310.     int fd, pgid;
  1311.     if (!getargs(args, "i", &fd))
  1312.         return NULL;
  1313.     pgid = tcgetpgrp(fd);
  1314.     if (pgid < 0)
  1315.         return posix_error();
  1316.     return newintobject((long)pgid);
  1317. }
  1318. #endif /* HAVE_TCGETPGRP */
  1319.  
  1320. #ifdef HAVE_TCSETPGRP
  1321. static object *
  1322. posix_tcsetpgrp(self, args)
  1323.     object *self;
  1324.     object *args;
  1325. {
  1326.     int fd, pgid;
  1327.     if (!getargs(args, "(ii)", &fd, &pgid))
  1328.         return NULL;
  1329.     if (tcsetpgrp(fd, pgid) < 0)
  1330.         return posix_error();
  1331.        INCREF(None);
  1332.     return None;
  1333. }
  1334. #endif /* HAVE_TCSETPGRP */
  1335.  
  1336. /* Functions acting on file descriptors */
  1337.  
  1338. static object *
  1339. posix_open(self, args)
  1340.     object *self;
  1341.     object *args;
  1342. {
  1343.     char *file;
  1344.     int flag;
  1345.     int mode = 0777;
  1346.     int fd;
  1347.     if (!getargs(args, "(si)", &file, &flag)) {
  1348.         err_clear();
  1349.         if (!getargs(args, "(sii)", &file, &flag, &mode))
  1350.             return NULL;
  1351.     }
  1352.     BGN_SAVE
  1353.     fd = open(file, flag, mode);
  1354.     END_SAVE
  1355.     if (fd < 0)
  1356.         return posix_error();
  1357.     return newintobject((long)fd);
  1358. }
  1359.  
  1360. static object *
  1361. posix_close(self, args)
  1362.     object *self;
  1363.     object *args;
  1364. {
  1365.     int fd, res;
  1366.     if (!getargs(args, "i", &fd))
  1367.         return NULL;
  1368.     BGN_SAVE
  1369.     res = close(fd);
  1370.     END_SAVE
  1371.     if (res < 0)
  1372.         return posix_error();
  1373.     INCREF(None);
  1374.     return None;
  1375. }
  1376.  
  1377. static object *
  1378. posix_dup(self, args)
  1379.     object *self;
  1380.     object *args;
  1381. {
  1382.     int fd;
  1383.     if (!getargs(args, "i", &fd))
  1384.         return NULL;
  1385.     BGN_SAVE
  1386.     fd = dup(fd);
  1387.     END_SAVE
  1388.     if (fd < 0)
  1389.         return posix_error();
  1390.     return newintobject((long)fd);
  1391. }
  1392.  
  1393. static object *
  1394. posix_dup2(self, args)
  1395.     object *self;
  1396.     object *args;
  1397. {
  1398.     int fd, fd2, res;
  1399.     if (!getargs(args, "(ii)", &fd, &fd2))
  1400.         return NULL;
  1401.     BGN_SAVE
  1402.     res = dup2(fd, fd2);
  1403.     END_SAVE
  1404.     if (res < 0)
  1405.         return posix_error();
  1406.     INCREF(None);
  1407.     return None;
  1408. }
  1409.  
  1410. static object *
  1411. posix_lseek(self, args)
  1412.     object *self;
  1413.     object *args;
  1414. {
  1415.     int fd, how;
  1416.     long pos, res;
  1417.     if (!getargs(args, "(ili)", &fd, &pos, &how))
  1418.         return NULL;
  1419. #ifdef SEEK_SET
  1420.     /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
  1421.     switch (how) {
  1422.     case 0: how = SEEK_SET; break;
  1423.     case 1: how = SEEK_CUR; break;
  1424.     case 2: how = SEEK_END; break;
  1425.     }
  1426. #endif /* SEEK_END */
  1427.     BGN_SAVE
  1428.     res = lseek(fd, pos, how);
  1429.     END_SAVE
  1430.     if (res < 0)
  1431.         return posix_error();
  1432.     return newintobject(res);
  1433. }
  1434.  
  1435. static object *
  1436. posix_read(self, args)
  1437.     object *self;
  1438.     object *args;
  1439. {
  1440.     int fd, size, n;
  1441.     object *buffer;
  1442.     if (!getargs(args, "(ii)", &fd, &size))
  1443.         return NULL;
  1444.     buffer = newsizedstringobject((char *)NULL, size);
  1445.     if (buffer == NULL)
  1446.         return NULL;
  1447.     BGN_SAVE
  1448.     n = read(fd, getstringvalue(buffer), size);
  1449.     END_SAVE
  1450.     if (n < 0) {
  1451.         DECREF(buffer);
  1452.         return posix_error();
  1453.     }
  1454.     if (n != size)
  1455.         resizestring(&buffer, n);
  1456.     return buffer;
  1457. }
  1458.  
  1459. static object *
  1460. posix_write(self, args)
  1461.     object *self;
  1462.     object *args;
  1463. {
  1464.     int fd, size;
  1465.     char *buffer;
  1466.     if (!getargs(args, "(is#)", &fd, &buffer, &size))
  1467.         return NULL;
  1468.     BGN_SAVE
  1469.     size = write(fd, buffer, size);
  1470.     END_SAVE
  1471.     if (size < 0)
  1472.         return posix_error();
  1473.     return newintobject((long)size);
  1474. }
  1475.  
  1476. static object *
  1477. posix_fstat(self, args)
  1478.     object *self;
  1479.     object *args;
  1480. {
  1481.     int fd;
  1482.     struct stat st;
  1483.     int res;
  1484.     if (!getargs(args, "i", &fd))
  1485.         return NULL;
  1486.     BGN_SAVE
  1487.     res = fstat(fd, &st);
  1488.     END_SAVE
  1489.     if (res != 0)
  1490.         return posix_error();
  1491.     return mkvalue("(llllllllll)",
  1492.             (long)st.st_mode,
  1493.             (long)st.st_ino,
  1494.             (long)st.st_dev,
  1495.             (long)st.st_nlink,
  1496.             (long)st.st_uid,
  1497.             (long)st.st_gid,
  1498.             (long)st.st_size,
  1499.             (long)st.st_atime,
  1500.             (long)st.st_mtime,
  1501.             (long)st.st_ctime);
  1502. }
  1503.  
  1504. static object *
  1505. posix_fdopen(self, args)
  1506.     object *self;
  1507.     object *args;
  1508. {
  1509.     extern int fclose PROTO((FILE *));
  1510.     int fd;
  1511.     char *mode = "r";
  1512.     int bufsize = -1;
  1513.     FILE *fp;
  1514.     object *f;
  1515.     if (!newgetargs(args, "i|si", &fd, &mode, &bufsize))
  1516.         return NULL;
  1517.     BGN_SAVE
  1518.     fp = fdopen(fd, mode);
  1519.     END_SAVE
  1520.     if (fp == NULL)
  1521.         return posix_error();
  1522.     f = newopenfileobject(fp, "(fdopen)", mode, fclose);
  1523.     if (f != NULL)
  1524.         setfilebufsize(f, bufsize);
  1525.     return f;
  1526. }
  1527.  
  1528. #ifdef HAVE_PIPE
  1529. static object *
  1530. posix_pipe(self, args)
  1531.     object *self;
  1532.     object *args;
  1533. {
  1534. #if !defined(MS_WIN32)
  1535.     int fds[2];
  1536.     int res;
  1537.     if (!getargs(args, ""))
  1538.         return NULL;
  1539.     BGN_SAVE
  1540.     res = pipe(fds);
  1541.     END_SAVE
  1542.     if (res != 0)
  1543.         return posix_error();
  1544.     return mkvalue("(ii)", fds[0], fds[1]);
  1545. #else /* MS_WIN32 */
  1546.     HANDLE read, write;
  1547.     BOOL ok;
  1548.     if (!getargs(args, ""))
  1549.         return NULL;
  1550.     BGN_SAVE
  1551.     ok = CreatePipe( &read, &write, NULL, 0);
  1552.     END_SAVE
  1553.     if (!ok)
  1554.         return posix_error();
  1555.     return mkvalue("(ii)", read, write);
  1556. #endif /* MS_WIN32 */
  1557. }
  1558. #endif  /* HAVE_PIPE */
  1559.  
  1560. #ifdef HAVE_MKFIFO
  1561. static object *
  1562. posix_mkfifo(self, args)
  1563.     object *self;
  1564.     object *args;
  1565. {
  1566.     char *file;
  1567.     int mode = 0666;
  1568.     int res;
  1569.     if (!newgetargs(args, "s|i", &file, &mode))
  1570.         return NULL;
  1571.     BGN_SAVE
  1572.     res = mkfifo(file, mode);
  1573.     END_SAVE
  1574.     if (res < 0)
  1575.         return posix_error();
  1576.     INCREF(None);
  1577.     return None;
  1578. }
  1579. #endif
  1580.  
  1581. #ifdef HAVE_FTRUNCATE
  1582. static object *
  1583. posix_ftruncate(self, args)
  1584.     object *self; /* Not used */
  1585.     object *args;
  1586. {
  1587.     int fd;
  1588.     long length;
  1589.     int res;
  1590.  
  1591.     if (!getargs(args, "(il)", &fd, &length))
  1592.         return NULL;
  1593.  
  1594.     BGN_SAVE
  1595.     res = ftruncate(fd, length);
  1596.     END_SAVE
  1597.     if (res < 0) {
  1598.         err_errno(IOError);
  1599.         return NULL;
  1600.     }
  1601.     INCREF(None);
  1602.     return None;
  1603. }
  1604. #endif
  1605.  
  1606. #ifdef HAVE_PUTENV
  1607. static object * 
  1608. posix_putenv(self,args)
  1609.     object *self;
  1610.     object *args;
  1611. {
  1612.         char *s1, *s2;
  1613.         char *new;
  1614.  
  1615.     if (!newgetargs(args, "ss", &s1, &s2))
  1616.         return NULL;
  1617.     /* XXX This leaks memory -- not easy to fix :-( */
  1618.     if ((new = malloc(strlen(s1) + strlen(s2) + 2)) == NULL)
  1619.                 return err_nomem();
  1620.     (void) sprintf(new, "%s=%s", s1, s2);
  1621.     if (putenv(new)) {
  1622.                 posix_error();
  1623.                 return NULL;
  1624.     }
  1625.     INCREF(None);
  1626.         return None;
  1627. }
  1628. #endif
  1629.  
  1630. static struct methodlist posix_methods[] = {
  1631.     {"chdir",    posix_chdir},
  1632.     {"chmod",    posix_chmod},
  1633. #ifdef HAVE_CHOWN
  1634.     {"chown",    posix_chown},
  1635. #endif /* HAVE_CHOWN */
  1636. #ifdef HAVE_GETCWD
  1637.     {"getcwd",    posix_getcwd},
  1638. #endif
  1639. #ifdef HAVE_LINK
  1640.     {"link",    posix_link},
  1641. #endif /* HAVE_LINK */
  1642.     {"listdir",    posix_listdir},
  1643.     {"lstat",    posix_lstat},
  1644.     {"mkdir",    posix_mkdir, 1},
  1645. #ifdef HAVE_NICE
  1646.     {"nice",    posix_nice},
  1647. #endif /* HAVE_NICE */
  1648. #ifdef HAVE_READLINK
  1649.     {"readlink",    posix_readlink},
  1650. #endif /* HAVE_READLINK */
  1651.     {"rename",    posix_rename},
  1652.     {"rmdir",    posix_rmdir},
  1653.     {"stat",    posix_stat},
  1654. #ifdef HAVE_SYMLINK
  1655.     {"symlink",    posix_symlink},
  1656. #endif /* HAVE_SYMLINK */
  1657. #ifdef HAVE_SYSTEM
  1658.     {"system",    posix_system},
  1659. #endif
  1660.     {"umask",    posix_umask},
  1661. #ifdef HAVE_UNAME
  1662.     {"uname",    posix_uname},
  1663. #endif /* HAVE_UNAME */
  1664.     {"unlink",    posix_unlink},
  1665.     {"remove",    posix_unlink},
  1666.     {"utime",    posix_utime},
  1667. #ifdef HAVE_TIMES
  1668.     {"times",    posix_times},
  1669. #endif /* HAVE_TIMES */
  1670.     {"_exit",    posix__exit},
  1671. #ifdef HAVE_EXECV
  1672.     {"execv",    posix_execv},
  1673.     {"execve",    posix_execve},
  1674. #endif /* HAVE_EXECV */
  1675. #ifdef HAVE_FORK
  1676.     {"fork",    posix_fork},
  1677. #endif /* HAVE_FORK */
  1678. #ifdef HAVE_GETEGID
  1679.     {"getegid",    posix_getegid},
  1680. #endif /* HAVE_GETEGID */
  1681. #ifdef HAVE_GETEUID
  1682.     {"geteuid",    posix_geteuid},
  1683. #endif /* HAVE_GETEUID */
  1684. #ifdef HAVE_GETGID
  1685.     {"getgid",    posix_getgid},
  1686. #endif /* HAVE_GETGID */
  1687.     {"getpid",    posix_getpid},
  1688. #ifdef HAVE_GETPGRP
  1689.     {"getpgrp",    posix_getpgrp},
  1690. #endif /* HAVE_GETPGRP */
  1691. #ifdef HAVE_GETPPID
  1692.     {"getppid",    posix_getppid},
  1693. #endif /* HAVE_GETPPID */
  1694. #ifdef HAVE_GETUID
  1695.     {"getuid",    posix_getuid},
  1696. #endif /* HAVE_GETUID */
  1697. #ifdef HAVE_KILL
  1698.     {"kill",    posix_kill},
  1699. #endif /* HAVE_KILL */
  1700. #ifdef HAVE_PLOCK
  1701.     {"plock",    posix_plock},
  1702. #endif /* HAVE_PLOCK */
  1703. #ifdef HAVE_POPEN
  1704.     {"popen",    posix_popen,    1},
  1705. #endif /* HAVE_POPEN */
  1706. #ifdef HAVE_SETUID
  1707.     {"setuid",    posix_setuid},
  1708. #endif /* HAVE_SETUID */
  1709. #ifdef HAVE_SETGID
  1710.     {"setgid",    posix_setgid},
  1711. #endif /* HAVE_SETGID */
  1712. #ifdef HAVE_SETPGRP
  1713.     {"setpgrp",    posix_setpgrp},
  1714. #endif /* HAVE_SETPGRP */
  1715. #ifdef HAVE_WAIT
  1716.     {"wait",    posix_wait},
  1717. #endif /* HAVE_WAIT */
  1718. #ifdef HAVE_WAITPID
  1719.     {"waitpid",    posix_waitpid},
  1720. #endif /* HAVE_WAITPID */
  1721. #ifdef HAVE_SETSID
  1722.     {"setsid",    posix_setsid},
  1723. #endif /* HAVE_SETSID */
  1724. #ifdef HAVE_SETPGID
  1725.     {"setpgid",    posix_setpgid},
  1726. #endif /* HAVE_SETPGID */
  1727. #ifdef HAVE_TCGETPGRP
  1728.     {"tcgetpgrp",    posix_tcgetpgrp},
  1729. #endif /* HAVE_TCGETPGRP */
  1730. #ifdef HAVE_TCSETPGRP
  1731.     {"tcsetpgrp",    posix_tcsetpgrp},
  1732. #endif /* HAVE_TCSETPGRP */
  1733.     {"open",    posix_open},
  1734.     {"close",    posix_close},
  1735.     {"dup",        posix_dup},
  1736.     {"dup2",    posix_dup2},
  1737.     {"lseek",    posix_lseek},
  1738.     {"read",    posix_read},
  1739.     {"write",    posix_write},
  1740.     {"fstat",    posix_fstat},
  1741.     {"fdopen",    posix_fdopen,    1},
  1742. #ifdef HAVE_PIPE
  1743.     {"pipe",    posix_pipe},
  1744. #endif
  1745. #ifdef HAVE_MKFIFO
  1746.     {"mkfifo",    posix_mkfifo, 1},
  1747. #endif
  1748. #ifdef HAVE_FTRUNCATE
  1749.     {"ftruncate",    posix_ftruncate, 1},
  1750. #endif
  1751. #ifdef HAVE_PUTENV
  1752.     {"putenv",    posix_putenv, 1},
  1753. #endif
  1754.     {NULL,        NULL}         /* Sentinel */
  1755. };
  1756.  
  1757.  
  1758. #if defined(_MSC_VER) || defined(__WATCOMC__)
  1759. void
  1760. initnt()
  1761. {
  1762.     object *m, *d, *v;
  1763.     
  1764.     m = initmodule("nt", posix_methods);
  1765.     d = getmoduledict(m);
  1766.     
  1767.     /* Initialize nt.environ dictionary */
  1768.     v = convertenviron();
  1769.     if (v == NULL || dictinsert(d, "environ", v) != 0)
  1770.         fatal("can't define nt.environ");
  1771.     DECREF(v);
  1772.     
  1773.     /* Initialize nt.error exception */
  1774.     PosixError = newstringobject("nt.error");
  1775.     if (PosixError == NULL || dictinsert(d, "error", PosixError) != 0)
  1776.         fatal("can't define nt.error");
  1777. }
  1778. #else /* not a PC port */
  1779. void
  1780. initposix()
  1781. {
  1782.     object *m, *d, *v;
  1783.     
  1784.     m = initmodule("posix", posix_methods);
  1785.     d = getmoduledict(m);
  1786.     
  1787.     /* Initialize posix.environ dictionary */
  1788.     v = convertenviron();
  1789.     if (v == NULL || dictinsert(d, "environ", v) != 0)
  1790.         fatal("can't define posix.environ");
  1791.     DECREF(v);
  1792.     
  1793. #ifdef WNOHANG
  1794.     /* Export WNOHANG symbol */
  1795.     v = newintobject((long)WNOHANG);
  1796.     if (v == NULL || dictinsert(d, "WNOHANG", v) != 0)
  1797.         fatal("can't define posix.WNOHANG");
  1798.     DECREF(v);
  1799. #endif
  1800.     
  1801.     /* Initialize posix.error exception */
  1802.     PosixError = newstringobject("posix.error");
  1803.     if (PosixError == NULL || dictinsert(d, "error", PosixError) != 0)
  1804.         fatal("can't define posix.error");
  1805. }
  1806. #endif /* !_MSC_VER */
  1807.